home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Narzedzia systemowe / Inno Setup 5.0.4 Beta / isetup-5.0.4-beta.exe / {app} / Examples / MyDll / C / MyDll.c next >
C/C++ Source or Header  |  2003-04-13  |  155b  |  6 lines

  1. #include <windows.h>
  2.  
  3. void __stdcall MyDllFunc(HWND hWnd, char *lpText, char *lpCaption, UINT uType)
  4. {
  5.   MessageBox(hWnd, lpText, lpCaption, uType);
  6. }